home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 June: Reference Library / Dev.CD Jun 94.toast / Periodicals / develop / develop Issue 10 / develop 10 code / GWorld Drawing / GWorld Routines / xform bitmap.h < prev   
Encoding:
C/C++ Source or Header  |  1992-04-08  |  152 b   |  9 lines  |  [TEXT/KAHL]

  1. #pragma once
  2.  
  3. typedef short shortFrac;
  4.  
  5. #define    oneShortFrac            (1 << 14)
  6. #define    halfShortFrac            (1 << 13)
  7. #define     Fixed2ShortFrac(x)        ((x) + 2 >> 2)
  8.  
  9.